STEP 7: Let's have our player move farther down until she's on the ground.

Pixels are the unit of measurement on the stage.

  • Let’s make the sprite move down 150 pixels.
  • In the .move_down(50), command change the number from 50 to 150. Do not put quotes around the number.
  • Click Run to see the fox move down farther.

To navigate the page using the TAB key, first press ESC to exit the code editor.

microbit = codesters.Microbit() microbit.show_string("hello") stage.set_background("soccerfield") sprite = codesters.Sprite("athlete2") sprite.move_down(50)
  • Run Code
  • Submit Work
  • Next Activity
  • Show Console
  • Reset Code Editor
  • Codesters How To (opens in a new tab)